Holiday Lab¶

The purpose of this notebook is to practice markdown!

In [1]:
from IPython.display import Image

def InputName():
    """
    create function for user to input person's name
    """
    global Name # make Name accessible outside of this functio'sn scope (bad form, I know)
    Name = input("Name the person: ")
    return Name

InputName()
Out[1]:
'Alan'
In [2]:
print("This is", Name)

Image("https://upload.wikimedia.org/wikipedia/en/9/97/Alan_Watts.png")
This is Alan
Out[2]:

This is his holiday destination¶

In [3]:
Image("https://upload.wikimedia.org/wikipedia/commons/f/fc/BeachFun.jpg", width=500, height=500)
Out[3]:

He likes to do the following there:¶

  • hang out at the beach
  • drink coconut juice
  • meditate
In [ ]: